60 lines
1.4 KiB
JavaScript
60 lines
1.4 KiB
JavaScript
QUnit.test("test:POS Profile", function(assert) {
|
|
assert.expect(1);
|
|
let done = assert.async();
|
|
|
|
frappe.run_serially([
|
|
() => {
|
|
return frappe.tests.make("POS Profile", [
|
|
{naming_series: "SINV"},
|
|
{company: "_Test Company"},
|
|
{country: "India"},
|
|
{currency: "INR"},
|
|
{write_off_account: "Write Off - _TC"},
|
|
{write_off_cost_center: "Main - _TC"},
|
|
{payments: [
|
|
[
|
|
{"default": 1},
|
|
{"mode_of_payment": "Cash"}
|
|
]]
|
|
}
|
|
]);
|
|
},
|
|
() => cur_frm.save(),
|
|
() => frappe.timeout(2),
|
|
() => {
|
|
assert.equal(cur_frm.doc.payments[0].default, 1, "Default mode of payment tested");
|
|
},
|
|
() => done()
|
|
]);
|
|
});
|
|
|
|
QUnit.test("test:Sales Invoice", function(assert) {
|
|
assert.expect(2);
|
|
let done = assert.async();
|
|
|
|
frappe.run_serially([
|
|
() => {
|
|
return frappe.tests.make("Sales Invoice", [
|
|
{customer: "_Test Customer 2"},
|
|
{company: "_Test Company"},
|
|
{is_pos: 1},
|
|
{posting_date: frappe.datetime.get_today()},
|
|
{due_date: frappe.datetime.get_today()},
|
|
{items: [
|
|
[
|
|
{"item_code": "_Test Item"},
|
|
{"qty": 5}
|
|
]]
|
|
}
|
|
]);
|
|
},
|
|
() => frappe.timeout(2),
|
|
() => cur_frm.save(),
|
|
() => frappe.timeout(2),
|
|
() => {
|
|
assert.equal(cur_frm.doc.payments[0].default, 1, "Default mode of payment tested");
|
|
assert.equal(cur_frm.doc.payments[0].mode_of_payment, "Cash", "Default mode of payment tested");
|
|
},
|
|
() => done()
|
|
]);
|
|
}); |